home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / linux / mmc / protocol.h < prev   
C/C++ Source or Header  |  2005-10-13  |  8KB  |  204 lines

  1. /*
  2.  * Header for MultiMediaCard (MMC)
  3.  *
  4.  * Copyright 2002 Hewlett-Packard Company
  5.  *
  6.  * Use consistent with the GNU GPL is permitted,
  7.  * provided that this copyright notice is
  8.  * preserved in its entirety in all copies and derived works.
  9.  *
  10.  * HEWLETT-PACKARD COMPANY MAKES NO WARRANTIES, EXPRESSED OR IMPLIED,
  11.  * AS TO THE USEFULNESS OR CORRECTNESS OF THIS CODE OR ITS
  12.  * FITNESS FOR ANY PARTICULAR PURPOSE.
  13.  *
  14.  * Many thanks to Alessandro Rubini and Jonathan Corbet!
  15.  *
  16.  * Based strongly on code by:
  17.  *
  18.  * Author: Yong-iL Joh <tolkien@mizi.com>
  19.  * Date  : $Date: 2002/06/18 12:37:30 $
  20.  *
  21.  * Author:  Andrew Christian
  22.  *          15 May 2002
  23.  */
  24.  
  25. #ifndef MMC_MMC_PROTOCOL_H
  26. #define MMC_MMC_PROTOCOL_H
  27.  
  28. /* Standard MMC commands (3.1)           type  argument     response */
  29.    /* class 1 */
  30. #define    MMC_GO_IDLE_STATE         0   /* bc                          */
  31. #define MMC_SEND_OP_COND          1   /* bcr  [31:0] OCR         R3  */
  32. #define MMC_ALL_SEND_CID          2   /* bcr                     R2  */
  33. #define MMC_SET_RELATIVE_ADDR     3   /* ac   [31:16] RCA        R1  */
  34. #define MMC_SET_DSR               4   /* bc   [31:16] RCA            */
  35. #define MMC_SELECT_CARD           7   /* ac   [31:16] RCA        R1  */
  36. #define MMC_SEND_CSD              9   /* ac   [31:16] RCA        R2  */
  37. #define MMC_SEND_CID             10   /* ac   [31:16] RCA        R2  */
  38. #define MMC_READ_DAT_UNTIL_STOP  11   /* adtc [31:0] dadr        R1  */
  39. #define MMC_STOP_TRANSMISSION    12   /* ac                      R1b */
  40. #define MMC_SEND_STATUS             13   /* ac   [31:16] RCA        R1  */
  41. #define MMC_GO_INACTIVE_STATE    15   /* ac   [31:16] RCA            */
  42.  
  43.   /* class 2 */
  44. #define MMC_SET_BLOCKLEN         16   /* ac   [31:0] block len   R1  */
  45. #define MMC_READ_SINGLE_BLOCK    17   /* adtc [31:0] data addr   R1  */
  46. #define MMC_READ_MULTIPLE_BLOCK  18   /* adtc [31:0] data addr   R1  */
  47.  
  48.   /* class 3 */
  49. #define MMC_WRITE_DAT_UNTIL_STOP 20   /* adtc [31:0] data addr   R1  */
  50.  
  51.   /* class 4 */
  52. #define MMC_SET_BLOCK_COUNT      23   /* adtc [31:0] data addr   R1  */
  53. #define MMC_WRITE_BLOCK          24   /* adtc [31:0] data addr   R1  */
  54. #define MMC_WRITE_MULTIPLE_BLOCK 25   /* adtc                    R1  */
  55. #define MMC_PROGRAM_CID          26   /* adtc                    R1  */
  56. #define MMC_PROGRAM_CSD          27   /* adtc                    R1  */
  57.  
  58.   /* class 6 */
  59. #define MMC_SET_WRITE_PROT       28   /* ac   [31:0] data addr   R1b */
  60. #define MMC_CLR_WRITE_PROT       29   /* ac   [31:0] data addr   R1b */
  61. #define MMC_SEND_WRITE_PROT      30   /* adtc [31:0] wpdata addr R1  */
  62.  
  63.   /* class 5 */
  64. #define MMC_ERASE_GROUP_START    35   /* ac   [31:0] data addr   R1  */
  65. #define MMC_ERASE_GROUP_END      36   /* ac   [31:0] data addr   R1  */
  66. #define MMC_ERASE                37   /* ac                      R1b */
  67.  
  68.   /* class 9 */
  69. #define MMC_FAST_IO              39   /* ac   <Complex>          R4  */
  70. #define MMC_GO_IRQ_STATE         40   /* bcr                     R5  */
  71.  
  72.   /* class 7 */
  73. #define MMC_LOCK_UNLOCK          42   /* adtc                    R1b */
  74.  
  75.   /* class 8 */
  76. #define MMC_APP_CMD              55   /* ac   [31:16] RCA        R1  */
  77. #define MMC_GEN_CMD              56   /* adtc [0] RD/WR          R1b */
  78.  
  79. /*
  80.   MMC status in R1
  81.   Type
  82.       e : error bit
  83.     s : status bit
  84.     r : detected and set for the actual command response
  85.     x : detected and set during command execution. the host must poll
  86.             the card by sending status command in order to read these bits.
  87.   Clear condition
  88.       a : according to the card state
  89.     b : always related to the previous command. Reception of
  90.             a valid command will clear it (with a delay of one command)
  91.     c : clear by read
  92.  */
  93.  
  94. #define R1_OUT_OF_RANGE        (1 << 31)    /* er, c */
  95. #define R1_ADDRESS_ERROR    (1 << 30)    /* erx, c */
  96. #define R1_BLOCK_LEN_ERROR    (1 << 29)    /* er, c */
  97. #define R1_ERASE_SEQ_ERROR      (1 << 28)    /* er, c */
  98. #define R1_ERASE_PARAM        (1 << 27)    /* ex, c */
  99. #define R1_WP_VIOLATION        (1 << 26)    /* erx, c */
  100. #define R1_CARD_IS_LOCKED    (1 << 25)    /* sx, a */
  101. #define R1_LOCK_UNLOCK_FAILED    (1 << 24)    /* erx, c */
  102. #define R1_COM_CRC_ERROR    (1 << 23)    /* er, b */
  103. #define R1_ILLEGAL_COMMAND    (1 << 22)    /* er, b */
  104. #define R1_CARD_ECC_FAILED    (1 << 21)    /* ex, c */
  105. #define R1_CC_ERROR        (1 << 20)    /* erx, c */
  106. #define R1_ERROR        (1 << 19)    /* erx, c */
  107. #define R1_UNDERRUN        (1 << 18)    /* ex, c */
  108. #define R1_OVERRUN        (1 << 17)    /* ex, c */
  109. #define R1_CID_CSD_OVERWRITE    (1 << 16)    /* erx, c, CID/CSD overwrite */
  110. #define R1_WP_ERASE_SKIP    (1 << 15)    /* sx, c */
  111. #define R1_CARD_ECC_DISABLED    (1 << 14)    /* sx, a */
  112. #define R1_ERASE_RESET        (1 << 13)    /* sr, c */
  113. #define R1_STATUS(x)            (x & 0xFFFFE000)
  114. #define R1_CURRENT_STATE(x)        ((x & 0x00001E00) >> 9)    /* sx, b (4 bits) */
  115. #define R1_READY_FOR_DATA    (1 << 8)    /* sx, a */
  116. #define R1_APP_CMD        (1 << 7)    /* sr, c */
  117.  
  118. /* These are unpacked versions of the actual responses */
  119.  
  120. struct _mmc_csd {
  121.     u8  csd_structure;
  122.     u8  spec_vers;
  123.     u8  taac;
  124.     u8  nsac;
  125.     u8  tran_speed;
  126.     u16 ccc;
  127.     u8  read_bl_len;
  128.     u8  read_bl_partial;
  129.     u8  write_blk_misalign;
  130.     u8  read_blk_misalign;
  131.     u8  dsr_imp;
  132.     u16 c_size;
  133.     u8  vdd_r_curr_min;
  134.     u8  vdd_r_curr_max;
  135.     u8  vdd_w_curr_min;
  136.     u8  vdd_w_curr_max;
  137.     u8  c_size_mult;
  138.     union {
  139.         struct { /* MMC system specification version 3.1 */
  140.             u8  erase_grp_size;
  141.             u8  erase_grp_mult;
  142.         } v31;
  143.         struct { /* MMC system specification version 2.2 */
  144.             u8  sector_size;
  145.             u8  erase_grp_size;
  146.         } v22;
  147.     } erase;
  148.     u8  wp_grp_size;
  149.     u8  wp_grp_enable;
  150.     u8  default_ecc;
  151.     u8  r2w_factor;
  152.     u8  write_bl_len;
  153.     u8  write_bl_partial;
  154.     u8  file_format_grp;
  155.     u8  copy;
  156.     u8  perm_write_protect;
  157.     u8  tmp_write_protect;
  158.     u8  file_format;
  159.     u8  ecc;
  160. };
  161.  
  162. #define MMC_VDD_145_150    0x00000001    /* VDD voltage 1.45 - 1.50 */
  163. #define MMC_VDD_150_155    0x00000002    /* VDD voltage 1.50 - 1.55 */
  164. #define MMC_VDD_155_160    0x00000004    /* VDD voltage 1.55 - 1.60 */
  165. #define MMC_VDD_160_165    0x00000008    /* VDD voltage 1.60 - 1.65 */
  166. #define MMC_VDD_165_170    0x00000010    /* VDD voltage 1.65 - 1.70 */
  167. #define MMC_VDD_17_18    0x00000020    /* VDD voltage 1.7 - 1.8 */
  168. #define MMC_VDD_18_19    0x00000040    /* VDD voltage 1.8 - 1.9 */
  169. #define MMC_VDD_19_20    0x00000080    /* VDD voltage 1.9 - 2.0 */
  170. #define MMC_VDD_20_21    0x00000100    /* VDD voltage 2.0 ~ 2.1 */
  171. #define MMC_VDD_21_22    0x00000200    /* VDD voltage 2.1 ~ 2.2 */
  172. #define MMC_VDD_22_23    0x00000400    /* VDD voltage 2.2 ~ 2.3 */
  173. #define MMC_VDD_23_24    0x00000800    /* VDD voltage 2.3 ~ 2.4 */
  174. #define MMC_VDD_24_25    0x00001000    /* VDD voltage 2.4 ~ 2.5 */
  175. #define MMC_VDD_25_26    0x00002000    /* VDD voltage 2.5 ~ 2.6 */
  176. #define MMC_VDD_26_27    0x00004000    /* VDD voltage 2.6 ~ 2.7 */
  177. #define MMC_VDD_27_28    0x00008000    /* VDD voltage 2.7 ~ 2.8 */
  178. #define MMC_VDD_28_29    0x00010000    /* VDD voltage 2.8 ~ 2.9 */
  179. #define MMC_VDD_29_30    0x00020000    /* VDD voltage 2.9 ~ 3.0 */
  180. #define MMC_VDD_30_31    0x00040000    /* VDD voltage 3.0 ~ 3.1 */
  181. #define MMC_VDD_31_32    0x00080000    /* VDD voltage 3.1 ~ 3.2 */
  182. #define MMC_VDD_32_33    0x00100000    /* VDD voltage 3.2 ~ 3.3 */
  183. #define MMC_VDD_33_34    0x00200000    /* VDD voltage 3.3 ~ 3.4 */
  184. #define MMC_VDD_34_35    0x00400000    /* VDD voltage 3.4 ~ 3.5 */
  185. #define MMC_VDD_35_36    0x00800000    /* VDD voltage 3.5 ~ 3.6 */
  186. #define MMC_CARD_BUSY    0x80000000    /* Card Power up status bit */
  187.  
  188.  
  189. /*
  190.  * CSD field definitions
  191.  */
  192.  
  193. #define CSD_STRUCT_VER_1_0  0           /* Valid for system specification 1.0 - 1.2 */
  194. #define CSD_STRUCT_VER_1_1  1           /* Valid for system specification 1.4 - 2.2 */
  195. #define CSD_STRUCT_VER_1_2  2           /* Valid for system specification 3.1       */
  196.  
  197. #define CSD_SPEC_VER_0      0           /* Implements system specification 1.0 - 1.2 */
  198. #define CSD_SPEC_VER_1      1           /* Implements system specification 1.4 */
  199. #define CSD_SPEC_VER_2      2           /* Implements system specification 2.0 - 2.2 */
  200. #define CSD_SPEC_VER_3      3           /* Implements system specification 3.1 */
  201.  
  202. #endif  /* MMC_MMC_PROTOCOL_H */
  203.  
  204.